home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
EDUCMATH
/
MERCURY.LZH
/
MERCURYZ.EXE
/
LIMIT.EKA
< prev
next >
Wrap
Text File
|
1992-03-24
|
254b
|
10 lines
; Demo of infinite limits.
; It finds the limits for a and c, but fails on b.
a = LIMIT(x SIN(1/x),x,1,INF)
b = LIMIT(LN(x)/x,x,1,INF)
f(x) := (x^3 + x^2 LN(x))/(x (20 - 3x^2))
c = LIMIT(f(x),x,10,INF)
; Omit the dummy x variable
SHOW a, b, c